home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / source / rfvdemo / timer.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-02  |  206 b   |  17 lines

  1. // TIMER_C
  2.  
  3. #ifndef _TIMER_H
  4. #define _TIMER_H
  5.  
  6. class timer_C
  7. {
  8. public:
  9.   timer_C();
  10.   ~timer_C();
  11.   long readtimer(void);
  12.   long elapsed(unsigned long start,unsigned long stop);
  13. };
  14.  
  15. #endif
  16.  
  17.